From 34b1fea64bd953ec6b69b0a631aee2c1d0283a1e Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 14 May 2008 09:13:48 +0100 Subject: [PATCH] qemu: add 0xe0 prefix to r-ctrl and r-alt keycodes Patch puts 0xe0 prefix before putting right alt or right cntrl keycodes. Also adds keysm definition for ISO_Left_Tab. Signed-off-by: Pat Campbell --- tools/ioemu/vnc.c | 2 ++ tools/ioemu/vnc_keysym.h | 1 + 2 files changed, 3 insertions(+) diff --git a/tools/ioemu/vnc.c b/tools/ioemu/vnc.c index 7ac3c4c2f5..0735d714f6 100644 --- a/tools/ioemu/vnc.c +++ b/tools/ioemu/vnc.c @@ -1333,6 +1333,8 @@ static void do_key_event(VncState *vs, int down, uint32_t sym) case 0x9d: /* Right CTRL */ case 0x38: /* Left ALT */ case 0xb8: /* Right ALT */ + if (keycode & 0x80) + kbd_put_keycode(0xe0); if (down) { vs->modifiers_state[keycode] = 1; kbd_put_keycode(keycode & 0x7f); diff --git a/tools/ioemu/vnc_keysym.h b/tools/ioemu/vnc_keysym.h index af99ce0e4e..aa0fd9b5f7 100644 --- a/tools/ioemu/vnc_keysym.h +++ b/tools/ioemu/vnc_keysym.h @@ -345,6 +345,7 @@ static name2keysym_t name2keysym[]={ {"Num_Lock", 0xff7f}, /* XK_Num_Lock */ {"Pause", 0xff13}, /* XK_Pause */ {"Escape", 0xff1b}, /* XK_Escape */ +{"ISO_Left_Tab", 0xfe20},/* XK_ISO_Left_Tab */ /* localized keys */ {"BackApostrophe", 0xff21}, -- 2.30.2